home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / GameCreators / TADS / manuals / TEX / TADS2_3.BAT < prev    next >
Encoding:
DOS Batch File  |  1996-10-03  |  646 b   |  25 lines

  1. @echo off
  2.  
  3. rem THIS IS THE THIRD PASS.  Only allow processing to proceed if
  4. rem the first argument is YES, which indicates that it's OK to
  5. rem go on.
  6.  
  7. if not "%1"=="YES" goto abort
  8.  
  9. rem Execute pass 3
  10. tex tadsman
  11.  
  12. rem Now do the table of contents, title pages, etc
  13. tex tadsttl
  14.  
  15. goto done
  16.  
  17. :abort
  18. echo This is Pass 3.  Only run this pass after you have hand-edited
  19. echo TADSINX.TEX to contain the final (sorted) index.  TADSINDX.UNI
  20. echo will contain the raw data for the index, automatically generated
  21. echo by pass 2.  When you really want to run pass 3, run this script
  22. echo again with YES as the first parameter.
  23.  
  24. :done
  25.